home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000037_news@columbia.edu_Fri Oct 6 14:30:28 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07541
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 6 Oct 1995 10:30:45 -0400
  3. Received: by apakabar.cc.columbia.edu id AA13311
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 6 Oct 1995 10:30:43 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc,comp.os.vms
  8. Subject: Re: Looking for Alphanumeric script file on OpenVMS
  9. Date: 6 Oct 1995 14:30:28 GMT
  10. Organization: Columbia University
  11. Lines: 39
  12. Message-Id: <453ei4$cvq@apakabar.cc.columbia.edu>
  13. References: <44v99i$b0b@wanda.pond.com> <44v9fq$b0b@wanda.pond.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Xref: news.columbia.edu comp.protocols.kermit.misc:3767 comp.os.vms:111510
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <44v9fq$b0b@wanda.pond.com>,
  19. Joseph B. Gill <gilljb@gmis.com> wrote:
  20. >"Joseph B. Gill" <gilljb@gmis.com> wrote:
  21. >>My manager is replacing my display pager with an alphanumeric one.
  22. >>I've been using KERMIT to send numeric codes but I thought I 
  23. >>remember seeing an example of an alphanumeric pager script.  Does 
  24. >>anyone have it or know where an example would be?
  25. >
  26. >I guess it would have been nice if I included the platform!
  27. >
  28. >  OpenVMS
  29. In the magazine, DEC Professional, columnist Kevin G. Barkes printed
  30. a C-Kermit script for OpenVMS to dial an alphanumeric pager.  It was
  31. in the February 1995 issue, pages 43-46.  You can make it as fancy as you
  32. want, but basically there's nothing to it:
  33.  
  34.  1. Set up the call.
  35.  
  36.  2. Make sure that DIAL succeeds (Alpha pagers, unlike numeric pagers,
  37.     will send carrier back).
  38.  
  39.  3. Send the text.  Use OUTPUT or TRANSMIT for this.
  40.  
  41.  4. Hang up.
  42.  
  43. Some alpha pagers use a protocol with framing, checksums, message numbers,
  44. etc.  One such protocol is called TAP.  You can do this sort of thing in
  45. Kermit script language too, using INPUT and OUTPUT together with Kermit's
  46. built-in string, logical, and arithmetic functions.  Just obtain the protocol
  47. specification from your pager service provider and start coding.  Post
  48. examples here for others to see.
  49.  
  50. For calling numeric pagers, see the item in the Kermit FAQ:
  51.  
  52.   http://www.columbia.edu/kermit/faq.html
  53.   ftp://kermit.columbia.edu/kermit/faq.txt
  54.  
  55. - Frank